home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1995 April / Internet Tools.iso / dos_win / winsock / maillist / 94-06 / text0016.txt < prev    next >
Encoding:
Text File  |  1994-06-01  |  8.0 KB  |  155 lines

  1.  
  2. In article <2sd3q0$69a@net.fonorola.net>, <Slavitch@Dev.Simware.COM> writes:
  3.  
  4. > In article <2s99i6$oqp@search01.news.aol.com>, rykerx@aol.com (RykerX) says:
  5. > >
  6. > >Please leave your opinion here.
  7. > >
  8. > Phttttttt on all of them... Delphi especially. AOL too. Better to
  9. > find a local friendly that'll offer you your own domain for
  10. > free or a few bucks a month if you know anything about computers.
  11. > If you are not a net.hack, then they are fine. Personally, I'd
  12. > prefer a local Freenet. They're popping up all over the place.
  13. > Anyone else wanna counter what I say?
  14.  
  15. Think long and hard about Freenets.  Most practice censorship.  Certain topics 
  16. are forbidden.  Language is carefully monitored.  Writer's SIGs, for example, 
  17. have to censor the writings online -- writings you will find in any supermarket 
  18. novel.
  19.  
  20. Freenets also have limited access to the Internet.  You are accessing the 
  21. Internet through a shell.  You have only as much access as they are willing to 
  22. grant.  You cannot, for example, use Mosaic to access WWW from most Freenets.  
  23. Nor can you use IRC from most of them.  You want an account that gives PPP or 
  24. SLIP access, preferably PPP.  Then you can use your own TCP/IP client software 
  25. to access the Internet.
  26.  
  27. Avoid Netcom, too.  They have even begun to revoke network access for users who 
  28. stimulate heated discussions in Usenet groups.  They have, for example, pulled 
  29. the account of someone recently for submitting dead cat postings to 
  30. rec.pets.cats.  A handful of readers complained to the Netcom sysadmin and 
  31. Netcom reacted.  Badly.
  32.  
  33. I cannot speak to PSI or Delphi.  I have no experience.  However, AOL practices 
  34. censorship with a vengeance.
  35.  
  36. Look for an Internet access provider that believes in the right to free 
  37. expression.
  38.  
  39.  
  40. Mitch
  41. From news@bigblue.oit.unc.edu Fri May 30 18:34:55 1994
  42. Received: from bigblue.oit.unc.edu by SunSITE.Unc.EDU (5.65c+IDA/FvK-1.07) with SMTP
  43.           id AA05277; Tue, 31 May 1994 15:29:42 -0400
  44. Received: by bigblue.oit.unc.edu (AIX 3.2/UCB 5.64/4.03)
  45.           id AA21164; Mon, 30 May 1994 14:33:54 -0400
  46. Received: from GATEWAY by bigblue with netnews
  47.     for winsock@sunsite.unc.edu (winsock@sunsite.unc.edu)
  48. To: winsock@sunsite.unc.edu
  49. Date: 30 May 1994 18:34:55 GMT
  50. From: sholomg@mcs.com (sholomg)
  51. Message-Id: <2sdbkf$ppd@News1.mcs.com>
  52. Organization: MCSNet Services
  53. Sender: ses
  54. Subject: New WinVN
  55.  
  56. I am presently using WinVN.  The only problem that I have with it is that
  57. it sometimes locks when I am trying to reply to an article.  I tried the
  58. latest version of WinVN from the ftp site.  However, it will not even
  59. let me conect with my server.  I keep getting error messages.
  60. Note that I am using chameleon sampler's winsock, running under windows
  61. ona PC.  Any ideas?
  62.  
  63. Sholom Gliksman       sholomg@mcs.com
  64. Coming to you live from the heart of Chicago's 48th Ward!
  65. From bowers@e5sr.ship.syr.ge.com Tue May 31 11:41:23 1994
  66. Received: from ns.ge.com by SunSITE.Unc.EDU (5.65c+IDA/FvK-1.07) with SMTP
  67.           id AA10077; Tue, 31 May 1994 15:41:08 -0400
  68. Received: from [144.219.112.1] by ns.ge.com (5.65/GE Gateway 1.23) with SMTP
  69.      id AA21482; Tue, 31 May 94 15:34:46 -0400
  70. Received: from e5sr12.ship.syr.ge.com by e5sr.ship.syr.ge.com (4.1/GEA Sun server 2.4c)id AA15718; Tue, 31 May 94 15:41:23 EDT
  71. Date: Tue, 31 May 94 15:41:23 EDT
  72. From: bowers@e5sr.ship.syr.ge.com (Brian Bowers x4822)
  73. Message-Id: <9405311941.AA15718@e5sr.ship.syr.ge.com>
  74. To: winsock@sunsite.unc.edu
  75. Subject: Using WSAASyncSelect() or select() to notify Client of succesful asynch connect()?
  76.  
  77. I am developing a service type application under Windows NT with Visual C++ for NT.  The PC is on a ethernet LAN and using TCP/IP protocol.  I am required to establish multiple Server and Client role sockets in a thread environment. (i.e preferably not a Windows application).  My problem is asynchronous notification of socket connections when establishing the multiple Client role sockets.  The following requirements must apply:
  78. 1. The Server process is not established (i.e. not executing yet)
  79. 2. The Client sockets are non-blocking
  80. 3. The notification is asynchronous for multiple socket connections
  81.  
  82. Question: After performing the connect() call and receiving the WSAEWOULDBLOCK error message back, how do you get asynchronous notification of successful connection on a socket when the Server process is finally powered on?
  83.  
  84. Statements: 
  85. 1) Having the SOCKET handle included into a write FD_SET and calling select() with no timeout does not seem to work. (e.g.Windows Sockets Specification version 1.1 pg 25,26).(Microsoft indicated this didn't seem to work right)
  86. 2) As a Windows application using WSAAsynchSelect with FD_CONNECT, after a short period of time (15 sec) a successful notification is posted indicating WSAECONNREFUSED using WSAGETSELECTERROR macro.
  87. 3) If the Server process is already executing (i.e. listen()ing) the connection can be established with the observation of the following anomoly:
  88. 3.a) When the socket is set to non-blocking the connect() call returns WSAEWOULDBLOCK even when the Sever process is already listen()ing.  ...A following select() call returns and the communication over the socket is available. ...Or A followig WSAAsynchSelect with FD_CONNECT successfully notifies the Window Application.
  89.  
  90. If any one has had success in a similar application or I am just interpreting the spec wrong please let me know.  Thanks, BLB.
  91. From news@bigblue.oit.unc.edu Sat May 31 05:02:50 1994
  92. Received: from bigblue.oit.unc.edu by SunSITE.Unc.EDU (5.65c+IDA/FvK-1.07) with SMTP
  93.           id AA14727; Tue, 31 May 1994 15:56:09 -0400
  94. Received: by bigblue.oit.unc.edu (AIX 3.2/UCB 5.64/4.03)
  95.           id AA10727; Tue, 31 May 1994 15:30:49 -0400
  96. Received: from GATEWAY by bigblue with netnews
  97.     for winsock@sunsite.unc.edu (winsock@sunsite.unc.edu)
  98. To: winsock@sunsite.unc.edu
  99. Date: 31 May 1994 12:02:50 -0700
  100. From: lchiu@crl.com (Laurence Chiu)
  101. Message-Id: <Q$twjK5QQ3EL064yn@crl.com>
  102. Organization: CRL Dialup Internet Access
  103. Sender: ses
  104. References: <fred.1.000D13EB@gmm.gu.se>
  105. Subject: Re: Win32s on networked Windows
  106.  
  107. In article <fred.1.000D13EB@gmm.gu.se>, Fred Sorensson wrote:
  108. : We recently got a Nowell NetWare network, and I am now running Windows from
  109. : the server, which works fine. The server Windows, however, does not have
  110. : win32s installed, and when I tried to install it from my machine, tie
  111. : installation program just died with a flash, and left me with Windows still
  112. : without the 32 bits. I found nothing in the Win32s files that said anything
  113. : about networked environments. If there is someone who has any knowledge of how
  114. : to solve this, I would be very grateful, since I would really prefer to run
  115. : the networked Windows version.
  116. :
  117.  
  118. In all likelihood you've struck the same problem that I have when
  119. trying to install software that needs to put files (usaully DLL's)
  120. into the windows\system directory. SInce it's on the LAN, unless you
  121. are the LAN administrator, you will not be able to write to that
  122. directory. This has crossed me several times. I can't even install a
  123. Windows fax package since it wants to copy the fax driver to the
  124. system directory.
  125.  
  126.     +======================================================+
  127.     |  Laurence Chiu            | Walnut Creek, California |
  128.     |  Tel: 510-215-3730 (work) | Internet: lchiu@crl.com  |
  129.     +======================================================+
  130. From news@bigblue.oit.unc.edu Sat May 31 17:53:39 1994
  131. Received: from bigblue.oit.unc.edu by SunSITE.Unc.EDU (5.65c+IDA/FvK-1.07) with SMTP
  132.           id AA23274; Tue, 31 May 1994 16:26:11 -0400
  133. Received: by bigblue.oit.unc.edu (AIX 3.2/UCB 5.64/4.03)
  134.           id AA30381; Tue, 31 May 1994 16:20:08 -0400
  135. Received: from GATEWAY by bigblue with netnews
  136.     for winsock@sunsite.unc.edu (winsock@sunsite.unc.edu)
  137. To: winsock@sunsite.unc.edu
  138. Date: 31 May 1994 17:53:39 GMT
  139. From: russ@psych1.psy.sunysb.edu
  140. Message-Id: <2sftj3$lt1@ysics.physics.sunysb.edu>
  141. Organization: SUNY at Stony Brook
  142. Sender: ses
  143. Subject: Internet in a box
  144.  
  145.  
  146. Spry can be contacted at info@spry.com.  I don't believe their Mosaic
  147. implementation is out yet, but their other internet programs are very good, with
  148. the exception of the News Reader, which is inferior to Trumpet
  149.  
  150.